Directional Buttons

This effect is practically unknown. 6 lines of HTML give you back and forward buttons that act exactly like the ones in your web browser. This script is best used in frames where one frame is the 'menu' - It makes your users feel more secure when they know they can go back

---------------------------------------------------------



<!-- ONE STEP TO INSTALL DIRECTIONAL BUTTONS:

   1.  Paste the coding into the BODY of your HTML document  -->

<!-- STEP ONE: Copy this code into the BODY of your HTML document  -->
		  
<BODY>

<CENTER>
<FORM>

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<INPUT TYPE="button" VALUE="  BACK  " onClick="history.go(-1)">
<INPUT TYPE="button" VALUE="FORWARD" onCLick="history.go(1)">
</FORM>
</CENTER>

<p><center>
<font face="arial, helvetica" size="-2">Free JavaScripts provided<br>
by <a href="http://javascriptsource.com">The JavaScript Source</a></font>
</center><p>

<!-- Script Size:  0.53 KB  -->
